home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Text⁄Files / Voyeur 1.1.1 / Voyeur ƒ / MSG Shell ƒ / msg environment.c < prev    next >
Text File  |  1994-02-26  |  3KB  |  129 lines

  1. /**********************************************************************\
  2.  
  3. File:        msg environment.c
  4.  
  5. Purpose:    This module handles initializing the environment and
  6.             checking for various environmental characteristics.
  7.  
  8.  
  9. Voyeur -- a no-frills file viewer
  10. Copyright ©1993-4, Mark Pilgrim
  11.  
  12. This program is free software; you can redistribute it and/or modify
  13. it under the terms of the GNU General Public License as published by
  14. the Free Software Foundation; either version 2 of the License, or
  15. (at your option) any later version.
  16.  
  17. This program is distributed in the hope that it will be useful,
  18. but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20. GNU General Public License for more details.
  21.  
  22. You should have received a copy of the GNU General Public License
  23. along with this program in a file named "GNU General Public License".
  24. If not, write to the Free Software Foundation, 675 Mass Ave,
  25. Cambridge, MA 02139, USA.
  26.  
  27. \**********************************************************************/
  28.  
  29. #include "GestaltEqu.h"
  30. #include "msg environment.h"
  31. #include "msg apple events.h"
  32. #include "msg graphics.h"
  33. #include "msg menus.h"
  34. #include "program globals.h"
  35. #include "v window maintenance.h"
  36. #include "v error.h"
  37.  
  38. Boolean            gHasColorQD;
  39. Boolean            gHasAppleEvents;
  40. Boolean            gHasFSSpecs;
  41. Boolean            gStandardFile58;
  42. Boolean            gHasPowerManager;
  43. Boolean            gHasNotificationManager;
  44.  
  45. Boolean            gIsInBackground;
  46. Boolean            gInProgress;
  47. Boolean            gDone;
  48. Boolean            gDisableQuit;
  49. Boolean            gNeedOpenDialog;
  50. int                gNeedCounter;
  51.  
  52. Rect            gDragRect;
  53.  
  54. void CheckEnvironment(void)
  55. {
  56.     long    gestalt_temp;
  57.     OSErr    isHuman;
  58.     
  59.     isHuman = Gestalt(gestaltQuickdrawVersion, &gestalt_temp);
  60.     gHasColorQD = !(isHuman || (gestalt_temp < gestalt8BitQD));
  61.     
  62.     GetMainScreenBounds();
  63.     
  64.     isHuman = Gestalt(gestaltFSAttr, &gestalt_temp);
  65.     gHasFSSpecs=((isHuman==noErr) && (gestalt_temp & (1 << gestaltHasFSSpecCalls)));
  66.  
  67.     isHuman = Gestalt(gestaltStandardFileAttr, &gestalt_temp);
  68.     gStandardFile58=((isHuman==noErr) && (gestalt_temp & (1 << gestaltStandardFile58)));
  69.  
  70.     isHuman=Gestalt(gestaltPowerMgrAttr, &gestalt_temp);
  71.     gHasPowerManager=((!isHuman) && (gestalt_temp&(1<<gestaltPMgrCPUIdle)));
  72.     
  73.     isHuman = Gestalt(gestaltNotificationMgrAttr, &gestalt_temp);
  74.     gHasNotificationManager=(!((isHuman) ||
  75.         (((gestalt_temp >> gestaltNotificationPresent) & 0x01) != 1)));
  76.     
  77.     gHasAppleEvents=0;
  78.     isHuman = Gestalt(gestaltAppleEventsAttr, &gestalt_temp);
  79.     if(!isHuman)
  80.     {
  81.         gHasAppleEvents = 1;
  82.         SetUpAppleEvents();
  83.     }
  84. }
  85.  
  86. void InitEnvironment(void)
  87. {
  88.     Handle        MBARHandle;
  89.     int            i;
  90.     
  91.     MBARHandle = GetNewMBar(400);
  92.     SetMenuBar(MBARHandle);
  93.     gAppleMenu = GetMHandle(appleMenu);
  94.     gFileMenu = GetMHandle(fileMenu);
  95.     gEditMenu = GetMHandle(editMenu);
  96.     gViewMenu = GetMHandle(viewMenu);
  97.     gOptionsMenu = GetMHandle(optionsMenu);
  98.     
  99.     SetItemStyle(gFileMenu, closeAllItem, condense);
  100.     SetItemStyle(gOptionsMenu, findHexItem, extend);
  101.     
  102.     gHelpMenu = GetMenu(helpMenu);
  103.     InsertMenu(gHelpMenu, -1);
  104.     
  105.     gWindowMenu=0L;
  106.     BuildProgramWindowMenu();
  107.     
  108.     AddResMenu(gAppleMenu, 'DRVR');
  109.     
  110.     gInProgress=FALSE;
  111.     
  112. //    AdjustMenus();
  113. //    DrawMenuBar();
  114.     
  115.     gNumHelp=CountMItems(gHelpMenu);
  116.     
  117.     gDragRect = screenBits.bounds;
  118.     gDragRect.top += 4;
  119.     gDragRect.left += 4;
  120.     gDragRect.right -= 4;
  121.     gDragRect.bottom -= 4;
  122.     
  123.     gDone=FALSE;
  124.     gIsInBackground=FALSE;
  125.     gNeedOpenDialog=TRUE;
  126.     gNeedCounter=0;
  127.     gPendingResultCode=allsWell;
  128. }
  129.